Dynomotion

Group: DynoMotion Message: 1011 From: b.burig@yahoo.com Date: 3/31/2011
Subject: Lens polishing routine
I am building a special 6 axes lens polishing machine. Every thing is fine except I need to include a routine for a reciprocating motion in the form of a triangle or cosine with a period of 4 seconds. The motion needs to run for a fixed amount of time probably 3-5 minutes. Even a for-next loop or go-sub would work but I don't see anything like that.
Any help is appreciated.
Group: DynoMotion Message: 1012 From: Tom Kerekes Date: 3/31/2011
Subject: Re: Lens polishing routine
Maybe a KFlop C Program like this:
 
#include "KMotionDef.h"
main()
{
    double DistToMove = 10000;    // distance to move in counts
    double TimePeriod = 4.0;      // period to move one way in seconds
    double TotalTime = 4.0 * 60.0;  // total Time
    double Vel = DistToMove/TimePeriod; // calculated Rate, cnts/sec
 
    int i,n = (int)TotalTime/TimePeriod/2.0;  // number of cycles
    int Axis=0;
 
    for (i=0; i<n; i++);
    {
        MoveRelAtVel(Axis,DistToMove,Vel);  // move positive
        while (!CheckDone(Axis)) ;     // wait till done
        MoveRelAtVel(Axis,-DistToMove,Vel);  // move negative
        while (!CheckDone(Axis)) ;     // wait till done
    }
}